home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / games / bdrome.zip / INSTALL.SCR < prev    next >
Text File  |  1994-11-18  |  5KB  |  145 lines

  1. clear
  2.  
  3. space %1: 10000 NoSpace
  4.  
  5. echo The install program will now copy 
  6. echo MetalTech: BattleDrome to your hard drive.
  7. echo Approximate hard drive space required:  10 Megs
  8. echo Hard drive space required during install:  14 Megs
  9. echo
  10. echo Do you wish to (C)ontinue or (E)xit?
  11. pick ce Continue Exit
  12.  
  13. :Continue
  14. %1:
  15. clear
  16. echo There are Two disks to install.
  17. echo It takes about 7 minutes copy and unpack the files.
  18. echo
  19. echo If this installation process fails for any reason, you
  20. echo should consult the troubleshooting section of your
  21. echo game manual as well as the README file for tips on
  22. echo resolving the problem.
  23. echo
  24. echo Copying Game files...
  25.  
  26. exists %2:RESOURCE.000 Please insert the disk labeled "Disk 1" in drive %2:.
  27. godir %4 CantCreate
  28. copy %2:install.txt .
  29. copy %2:install.hlp .
  30. copy %2:install.bat .
  31. copy %2:install.scr .
  32. copy %2:resource.cfg .
  33. copy %2:readme .
  34. copy %2:readme.bat .
  35. copy %2:copyfilz.exe .
  36. godir %4 CantCreate
  37.  
  38. copy %2:unchunk.exe
  39. copy %2:RESOURCE.000
  40. clear
  41. echo Uncompressing Files - We are currently uncompressing
  42. echo the game files from Disk 1.  This process can take
  43. echo anywhere from 1-5 minutes depending on the speed of
  44. echo your computer.
  45. echo
  46. echo You will notice that the light on the floppy drive
  47. echo will not be active.  This is normal.  The computer 
  48. echo will prompt you when the uncompression procedure 
  49. echo has finished.  If you are using a disk caching 
  50. echo program, you may also notice that the hard drive
  51. echo light will not access often.
  52. echo
  53. echo Processing %2:resource.000...
  54. unchunk RESOURCE.000 . > nul
  55. if ERRORLEVEL 1 goto BadChunk
  56. del RESOURCE.000
  57.  
  58. exists %2:RESOURCE.001 Please insert the disk labeled "Disk 2" in drive %2:.
  59. clear
  60. echo Now would be a good time to fill out your Sierra
  61. echo Warranty Registration card.  You will find it 
  62. echo attached to your simulation manual.  Please fill it 
  63. echo out and send the bottom section back (we even pay the 
  64. echo postage!).  Keep the top section for your records.
  65. echo
  66. echo Sending in the Sierra Registration card not only
  67. echo lets us know that you have purchased BattleDrome,
  68. echo it will also enable you to receive a free subscription 
  69. echo to our InterAction magazine which contains gameplay 
  70. echo tips, strategies, previews and reviews of the most 
  71. echo popular educational and entertainment titles released  
  72. echo by Sierra Publishing.
  73. echo
  74. copy %2:RESOURCE.001 
  75. clear
  76. echo Sending in your Registration card also lets us know a
  77. echo little more about you and your computer so we can do a
  78. echo better job of making the kind of games you want!
  79. echo
  80. echo Have you read the "readme" file yet?  Well, if you
  81. echo haven't, put it on your list of things to do.  The
  82. echo "readme" file contains information that was not
  83. echo available when the manual was sent to the printers.
  84. echo You can view the "readme" file by loading it into your
  85. echo word processor or text editor.  You may also view this
  86. echo file in the install program itself.  The "readme" file 
  87. echo is considered to be part of your BattleDrome game 
  88. echo documentation, and should not be missed!
  89. echo
  90. echo Processing %2:resource.001...
  91. unchunk RESOURCE.001 . > nul
  92. if ERRORLEVEL 1 goto BadChunk
  93. del RESOURCE.001
  94.  
  95. exists %2:RESOURCE.000 Please insert the disk labeled "Disk 1" in drive %2:.
  96. del UNCHUNK.EXE
  97. end
  98.  
  99. :NoSpace
  100. clear
  101. echo
  102. alert There is not enough space on %1: to install MetalTech: BattleDrome on your hard drive.  13.5 megabytes of disk space are necessary.
  103. end
  104.  
  105. :CantCreate
  106. clear
  107. echo
  108. alert Unable to create directory %4
  109. end
  110.  
  111. :Corrupted
  112. alert Corrupted files exist.  Please run install again.
  113. end
  114.  
  115. :BadChunk
  116. if ERRORLEVEL 5 goto ERR5
  117. if ERRORLEVEL 4 goto ERR4
  118. if ERRORLEVEL 3 goto ERR3
  119. if ERRORLEVEL 2 goto ERR2
  120. if ERRORLEVEL 1 goto ERR1
  121. alert Unable to extract resource file.  Please run install again.
  122. end
  123.  
  124. :ERR1
  125. alert Unable to read resource file.  Make sure the drive door is shut and run install again.
  126. end
  127. :ERR2
  128. alert Unable to write resource file to hard drive.  This program only installs games on hard drives.  Run install again.  If you get this message again you may have a problem with your hard drive.
  129. end
  130. :ERR3
  131. alert Not enough memory to run extraction program.  The extraction program needs a minimum of 550k to operate.
  132. end
  133. :ERR4
  134. alert The resource file is bad.  Run install again.  If you get this message again, you probably received a bad disk.
  135. end
  136. :ERR5
  137. alert Unable to open the resource file for reading.  A possible solution might be to increase the value of the FILES setting in your CONFIG.SYS file.
  138. end
  139. :ERR6
  140. alert Unable to open the target file for writing.  A possible solution might be to increase the value of the FILES setting in your CONFIG.SYS file.
  141. end
  142.  
  143. :exit
  144. end
  145.